home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue38 / BuildPro / BUILD / FullBuild.bat < prev    next >
DOS Batch File  |  1998-05-20  |  699b  |  29 lines

  1. @ECHO OFF
  2. REM FullBuild.bat
  3. REM This compiles the product in a debug state and places the executables and sundry files into a named directory.
  4.  
  5. REM Build the first project.
  6. CD "..\My Project 1"
  7. BRCC32 ExtraData.rc
  8. DCC32 /B /H /W /Q /$D+ /$C+ /$O- /E..\BuildOutput MyProject1.dpr
  9. IF ERRORLEVEL 1 GOTO FAILED
  10.  
  11. REM Now build the second project.
  12. CD "..\My Project 2"
  13. DCC32 /B /H /W /Q /$D+ /$C+ /$O- /E..\BuildOutput MyProject2.dpr
  14. IF ERRORLEVEL 1 GOTO FAILED
  15.  
  16. REM Make the help file.
  17. CD ..\HELP
  18. HCW /C /E myproduct.hpj
  19. IF ERRORLEVEL 1 GOTO FAILED
  20. COPY MyProduct.hlp ..\BuildOutput
  21.  
  22. ECHO My Product built OK
  23. GOTO END
  24.  
  25. :FAILED
  26. ECHO My Product failed to build
  27.  
  28. :END
  29. CD ..\Build